home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr25
/
rxcalc.zip
/
POWER.CAL
< prev
next >
Wrap
Text File
|
1993-03-01
|
486b
|
10 lines
/* Rexx Calculator remainder processor */
parse arg left, right /* get the two operands */
numeric digits CalcPrecision() /* set current precision */
numeric form value CalcForm() /* set current form */
if \datatype(right,'Whole') /* if not a whole number */
then return 'Error' /* return error indicator */
return left ** right /* return result */